/* ===========================
   RESET
=========================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--blue: #0051A2;
	--blue-dark: #003a75;
}

body {
	font-family: Arial, Helvetica, sans-serif;
}

/* ===========================
   HERO WRAPPER
=========================== */
.main {
	width: 100%;
	min-height: 100vh;
	background:
		linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.25)),
		url('IMG_2727.jpeg');
	background-position: center;
	background-size: cover;
	padding-bottom: 60px;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
	max-width: 1200px;
	margin: auto;
	min-height: 75px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 15px 20px 0;
}

.brand img {
	display: block;
}

.menu ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	gap: 35px;
}

.menu ul li a {
	text-decoration: none;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.3s ease-in-out;
}

.menu ul li a:hover {
	color: #6ea8ff;
}

.search {
	display: flex;
}

.srch {
	font-family: 'Times New Roman', serif;
	width: 200px;
	height: 40px;
	background: transparent;
	border: 1px solid white;
	border-right: none;
	color: white;
	font-size: 16px;
	padding: 0 16px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.srch:focus {
	outline: none;
}

.btn {
	width: 100px;
	height: 40px;
	background: black;
	border: 2px solid var(--blue);
	color: white;
	font-size: 15px;
	cursor: pointer;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.btn:focus {
	outline: none;
}

::placeholder {
	color: white;
	font-family: Arial, Helvetica, sans-serif;
}

/* ===========================
   CONTENT (hero text + login card)
=========================== */
.content {
	max-width: 1200px;
	margin: auto;
	padding: 60px 20px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
	color: whitesmoke;
}

.content-text {
	flex: 1 1 480px;
	max-width: 640px;
}

.content h1 {
	font-family: 'Times New Roman', serif;
	font-size: 40px;
	letter-spacing: 2px;
	margin-bottom: 20px;
}

.content span {
	color: #6ea8ff;
	font-size: 48px;
}

.content .par {
	padding-bottom: 25px;
	letter-spacing: 1.1px;
	line-height: 1.7;
}

.content .cn {
	display: inline-block;
	width: 160px;
	text-align: center;
	line-height: 40px;
	height: 40px;
	background: var(--blue);
	color: white;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	border-radius: 10px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.content .cn:hover {
	background: steelblue;
}

/* ===========================
   LOGIN FORM CARD
=========================== */
.form {
	flex: 0 1 280px;
	background: rgba(0, 0, 0, 0.25);
	border-radius: 10px;
	padding: 25px;
	backdrop-filter: blur(4px);
}

.form h2 {
	text-align: center;
	color: var(--blue);
	font-size: 22px;
	background-color: white;
	border-radius: 10px;
	padding: 8px;
	margin-bottom: 10px;
}

.form input {
	width: 100%;
	height: 35px;
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--blue);
	color: white;
	font-size: 15px;
	letter-spacing: 1px;
	margin-top: 25px;
}

.form input:focus {
	outline: none;
}

.btnn {
	width: 100%;
	height: 40px;
	background: var(--blue);
	border: none;
	margin-top: 30px;
	font-size: 18px;
	font-weight: bold;
	border-radius: 10px;
	cursor: pointer;
	color: white;
	transition: 0.3s ease;
}

.btnn:hover {
	background: white;
	color: black;
}

.form .link {
	font-size: 15px;
	padding-top: 20px;
	text-align: center;
}

.form .link a {
	text-decoration: none;
	color: #6ea8ff;
	font-weight: bold;
}

.liw {
	padding-top: 15px;
	padding-bottom: 10px;
	text-align: center;
	font-size: 14px;
}

.social-icons {
	display: flex;
	justify-content: center;
	gap: 25px;
}

.social-icons a {
	text-decoration: none;
	color: white;
}

.social-icons ion-icon {
	font-size: 20px;
	transition: 0.3s ease;
}

.social-icons ion-icon:hover {
	color: #6ea8ff;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
	.content {
		flex-direction: column;
	}

	.form {
		flex: 1 1 auto;
		max-width: 400px;
	}
}

@media (max-width: 600px) {
	.navbar {
		justify-content: center;
		text-align: center;
	}

	.search {
		width: 100%;
		justify-content: center;
	}

	.content h1 {
		font-size: 30px;
	}

	.content span {
		font-size: 34px;
	}
}
